home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / GL / fxmesa.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-07-16  |  2.6 KB  |  104 lines

  1. /*
  2.  * Mesa 3-D graphics library
  3.  * Version:  4.0
  4.  * Copyright (C) 1995-2001  Brian Paul
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Library General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Library General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Library General Public
  17.  * License along with this library; if not, write to the Free
  18.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21.  
  22. /*
  23.  * FXMesa - 3Dfx Glide driver for Mesa.  Contributed by David Bucciarelli
  24.  *
  25.  * NOTE: This version requires Glide3 (http://sourceforge.net/projects/glide)
  26.  */
  27.  
  28.  
  29. #ifndef FXMESA_H
  30. #define FXMESA_H
  31.  
  32.  
  33. #include <glide.h>
  34.  
  35.  
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39.  
  40.  
  41. #define FXMESA_MAJOR_VERSION 6
  42. #define FXMESA_MINOR_VERSION 3
  43.  
  44.  
  45. /*
  46.  * Values for attribList parameter to fxMesaCreateContext():
  47.  */
  48. #define FXMESA_NONE        0    /* to terminate attribList */
  49. #define FXMESA_DOUBLEBUFFER    10
  50. #define FXMESA_ALPHA_SIZE    11      /* followed by an integer */
  51. #define FXMESA_DEPTH_SIZE    12      /* followed by an integer */
  52. #define FXMESA_STENCIL_SIZE    13      /* followed by an integer */
  53. #define FXMESA_ACCUM_SIZE    14      /* followed by an integer */
  54. #define FXMESA_COLORDEPTH    20      /* followed by an integer */
  55. #define FXMESA_SHARE_CONTEXT 990099    /* keep in sync with xmesa1.c! */
  56.  
  57.  
  58.  
  59. typedef struct tfxMesaContext *fxMesaContext;
  60.  
  61.  
  62. #if defined (__BEOS__)
  63. #pragma export on
  64. #endif
  65.  
  66.  
  67. GLAPI fxMesaContext GLAPIENTRY fxMesaCreateContext(GLuint win, GrScreenResolution_t,
  68.                           GrScreenRefresh_t,
  69.                           const GLint attribList[]);
  70.  
  71. GLAPI fxMesaContext GLAPIENTRY fxMesaCreateBestContext(GLuint win,
  72.                               GLint width, GLint height,
  73.                               const GLint attribList[]);
  74. GLAPI void GLAPIENTRY fxMesaDestroyContext(fxMesaContext ctx);
  75.  
  76. GLAPI GLint GLAPIENTRY fxMesaSelectCurrentBoard(int n);
  77.  
  78. GLAPI void GLAPIENTRY fxMesaMakeCurrent(fxMesaContext ctx);
  79.  
  80. GLAPI fxMesaContext GLAPIENTRY fxMesaGetCurrentContext(void);
  81.  
  82. GLAPI void GLAPIENTRY fxMesaSwapBuffers(void);
  83.  
  84. GLAPI void GLAPIENTRY fxMesaSetNearFar(GLfloat nearVal, GLfloat farVal);
  85.  
  86. GLAPI void GLAPIENTRY fxMesaUpdateScreenSize(fxMesaContext ctx);
  87.  
  88. GLAPI void GLAPIENTRY fxCloseHardware(void);
  89.  
  90. GLAPI void GLAPIENTRY fxGetScreenGeometry (GLint *w, GLint *h);
  91.  
  92.  
  93. #if defined (__BEOS__)
  94. #pragma export off
  95. #endif
  96.  
  97.  
  98. #ifdef __cplusplus
  99. }
  100. #endif
  101.  
  102.  
  103. #endif
  104.